home *** CD-ROM | disk | FTP | other *** search
/ Merciful 1 / Merciful - Disc 1.iso / software / m / mr_backup / mrbackup.dms / in.adf / Devs / MountList < prev    next >
Encoding:
Text File  |  1991-05-06  |  3.2 KB  |  139 lines

  1. /* MountList for V2.0 */
  2.  
  3. /* This is an example of a non-filing system mount using a handler written
  4.    in C.
  5. */
  6.  
  7. SPEAK:     
  8.     Handler = L:Speak-Handler
  9.     Stacksize = 6000
  10.     Priority = 5
  11.     GlobVec = -1
  12. #
  13.  
  14. /*  This is an example of an alternative type of non-filing device mount,
  15.     used to mount the non-buffered serial handler
  16. */
  17.  
  18. AUX:
  19.     Handler = L:Aux-Handler
  20.     Stacksize = 1000
  21.     Priority = 5
  22. #
  23.  
  24. /*  This is a non-filing system device */
  25.  
  26. PIPE:      
  27.     Handler = L:Pipe-Handler
  28.     Stacksize = 6000
  29.     Priority = 5
  30.     GlobVec = -1
  31. #
  32.  
  33. /* This is an example of a mount list entry for using the recoverable 
  34.    ram disk.  Depending on the amount of memory you wish to devote to
  35.    it, you may want to change the HighCyl value.
  36. */
  37.  
  38. RAD:       Device = ramdrive.device
  39.            Unit   = 0
  40.            Flags  = 0
  41.            Surfaces  = 2
  42.            BlocksPerTrack = 11
  43.            Reserved = 2
  44.            Interleave = 0
  45.            LowCyl = 0  ;  HighCyl = 79
  46.            Buffers = 5
  47.            BufMemType = 1
  48. #
  49.  
  50. MRTAPE: Handler = l:mrtape-handler
  51.         Startup = "256/scsi.device/4/0"
  52.         Stacksize = 10000
  53.         Priority = 5
  54.         GlobVec = -1
  55. #
  56.  
  57.  
  58.  
  59. /* MountList for V1.3 */
  60.  
  61. /*  Mount Entry for the new Console Handler */
  62.  
  63. NEWCON: 
  64.     Handler = L:Newcon-Handler
  65.     Priority = 5
  66.     StackSize = 1000
  67. #
  68.  
  69. /* This is an example of a non-filing system mount using a handler written
  70.    in C.
  71. */
  72.  
  73. /*  This is a non-filing system device */
  74.  
  75. /* This is an example of a mount list entry for using the recoverable 
  76.    ram disk.  Depending on the amount of memory you wish to devote to
  77.    it, you may want to change the HighCyl value.
  78. */
  79.  
  80. /* Mount a 5.25" disk drive to be mounted as DF2: */
  81.  
  82. DF2:       Device = trackdisk.device
  83.            Unit   = 2
  84.            Flags  = 1
  85.            Surfaces  = 2
  86.            BlocksPerTrack = 11
  87.            Reserved = 2
  88.            Interleave = 0
  89.            LowCyl = 0  ;  HighCyl = 39
  90.            Buffers = 20
  91.            BufMemType = 3
  92. #
  93.  
  94. /* An example mount entry using the fast file system with a partition
  95.    of the hard disk using the 2090 disk controller.  PREP has been
  96.    used to create the first partition (up to cylinder 20).  The second
  97.    partition is MOUNTed, using the following entry:
  98.    NOTE: Some hard disk drivers require more stack than specified here.
  99.    Some may required less.
  100.    (The hard disk is not included; this is only an example.)
  101. */
  102.  
  103. FAST:
  104.     Device = hddisk.device
  105.     FileSystem = l:FastFileSystem
  106.     Unit   = 3
  107.     Flags  = 0
  108.     Surfaces  = 4
  109.     BlocksPerTrack = 17
  110.     Reserved = 2
  111.     Interleave = 0
  112.     LowCyl = 2  ;  HighCyl = 800
  113.     Buffers = 30
  114.     GlobVec = -1
  115.     BufMemType = 1
  116.     Mount = 1
  117.     DosType = 0x444F5301
  118.     StackSize = 4000
  119. #
  120.  
  121. /* Let's say you have an A2000 with an internal drive, and an external
  122.    drive, and you want to refer to the external drive as DF1: as well
  123.    as DF2:   Well, this MountList entry will do it for you.  This technique
  124.    can be extended to provide you with a drive A: and B: if you really
  125.    want.
  126. */
  127.  
  128. DF1:       Device = trackdisk.device
  129.            Unit   = 2
  130.            Flags  = 1
  131.            Surfaces  = 2
  132.            BlocksPerTrack = 11
  133.            Reserved = 2
  134.            Interleave = 0
  135.            LowCyl = 0  ;  HighCyl = 79
  136.            Buffers = 20
  137.            BufMemType = 3
  138. #
  139.